home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / arexx / modeler / _saveme.lwm next >
Text File  |  1993-12-13  |  498b  |  16 lines

  1. /* _SaveMe.lwm -- A little reminder to for you save your work!
  2.  By Arnie Cachelin © 1993 NewTek Inc. */
  3.  
  4. arg del
  5.  
  6. if del ="" then del=10
  7. libadd = addlib("LWModelerARexx.port",0)
  8.  
  9. KeepGoing=1
  10.   KeepGoing=notify(2,"Hi, It may be a good time to save your work...","@Should I keep pestering you every "del" minutes?")
  11. do while KeepGoing
  12.   Delay(del*50*60)
  13.   KeepGoing=notify(2,"!     Hi, It may be a good time to save your work...     ","","@Should I keep pestering you every "del" minutes?")
  14. end
  15. exit
  16.